* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #0a192f;
            --secondary: #dfb429; /* Gold color */
            --accent: #ff6b6b;
            --glass: rgba(48, 41, 6, 0.27);
            --glass-header:rgba(255, 255, 254, 0.45);
            --glass-border: rgba(255, 255, 255, 0.1);
            --text: #eef2f7;;
            --gold-light: #f9e076;
            --gold-medium: #d4af37;
            --gold-dark: #b8860b;
            --dark-bg: #121212;
            --light-bg: #ffffff;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            background-color:  rgba(252, 246, 197, 0.7);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

       /* Glass Morphism Styles */
        .glass {
            background: var(--glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            /* border: 1px solid var(--glass-border); */
            border-radius: 0px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
        }

        .glass:hover {
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
            border-color: rgba(212, 175, 55, 0.4);
        }

        /* Gold decorative elements */
        .gold-divider {
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold-medium), transparent);
            margin: 20px 0;
            border-radius: 2px;
        }

        /* Header Styles */
        header {
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100vw;
            top: 0;
            z-index: 1000;
            background: white;
             
        }
        /* In your header.css or within estate.css */
header.glass {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
}

header.glass nav {
    display: flex;
    align-items: center;
}



        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text);
            /* font-family: 'Playfair Display', serif; */
            /* letter-spacing: 1px; */
            text-decoration: none;
        }
        .logo h6{
  font-size:  clamp(.9rem,1.2vw,1.1rem);
  padding-top: 10px;
        }
        .logo:hover{
              color: var(--text);
        }
        .logo i {
            color: var(--secondary);
           

        }
        .logo-image{
            width: 2.5em;
            height: 2.3em;
            position: relative;
            border: 1.2px solid  transparent;
          
    }
        .logo-image::after{
            content: "";
            position: absolute;
            left: 19%;
            top:  6%;
            z-index: -1;
            width:75%;
            height: 86%;
            background: rgba(54, 47, 2, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 10%;
               border-top-right-radius: 33%;
                border-bottom-right-radius:  33%;
        }
        
        
        .logo-image img{
            position: absolute;
            height: 100%;
            width: 100%;
            z-index: 2;
        } 
        /* .logo h6{
            font-size: .95em;
        } */
        nav ul
         {
            display: flex;
            list-style: none;
            gap: 36px;
              padding-top: 16px;
        }

        nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
            font-size: 1rem;
        }

        nav a:hover {
            color:var(--secondary);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold-medium);
            transition: all 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .auth-buttons {
            display: flex;
            gap: 15px;
        }

       
 /* Mobile Menu Icon */
      /* ===== HAMBURGER MENU ===== */
.menu-toggle {
    display: none;
    width: 50px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 0px;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

/* Animation when menu is open */
.menu-toggle.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
    background: var(--secondary);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
    background: var(--secondary);
}
         /* Mobile Dropdown Menu */
      /* ===== MOBILE NAVIGATION ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.15); /* Very light white – almost transparent */
    backdrop-filter: blur(20px) brightness(1.1);
    -webkit-backdrop-filter: blur(20px) brightness(1.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 80px 20px 30px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    border-left: 2px solid var(--secondary);
}


.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
    transition-delay: calc(0.1s * var(--item-index));
}

.mobile-nav.active ul li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav ul li a {
    color: var(--primary); /* Dark text for better readability on light glass */
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.25); /* Semi‑opaque white background for links */
    border-radius: 12px;
    border: 1px solid rgba(223, 180, 41, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(5px); /* Extra blur on links themselves */
    -webkit-backdrop-filter: blur(5px);
}
.mobile-nav ul li a i {
    margin-right: 15px;
    color: var(--secondary);
    width: 24px;
    text-align: center;
    font-size: 1.2rem;
}
.mobile-nav ul li a:hover {
    background: rgba(223, 180, 41, 0.2);
    border-color: var(--secondary);
    transform: translateX(5px);
    color: var(--secondary);
}
/* Close icon */
/* Close icon – now visible on light background */
.close-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    color: var(--primary); /* Dark icon */
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1010;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(223, 180, 41, 0.3);
}

.close-icon:hover {
    color: var(--secondary);
    transform: rotate(90deg) scale(1.1);
    background: rgba(255, 255, 255, 0.8);
}

  /* Responsive Design */
        @media (max-width: 992px) {
            nav ul, .auth-buttons {
                display: none;
            }
           
            .menu-toggle {
                display: flex;
            }
            
        }
            @media (max-width: 576px) {
         .menu-toggle span {
            width: 70%;
            margin-left: .7em;
            margin-right: .5em;
        }
           
           
        } 
        /* ===== BACK TO TOP BUTTON ===== */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-medium), var(--secondary));
    border: none;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    outline: none;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, var(--secondary), var(--gold-dark));
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.back-to-top-btn:active {
    transform: translateY(0);
}

/* On small screens, adjust position to not overlap content too much */
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}
    